cursor$18219$ - перевод на итальянский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

cursor$18219$ - перевод на итальянский

DATABASE CURSOR
Database cursor; SQL Cursor; Cursor (database)

cursor      
n. cursore, indicatore manualmente controllato sullo schermo di un computer
mouse pointer         
  • An example of a 3D cursor in a 3D modeling environment (center).
  • A ''wait'' cursor replaces the pointer with an hourglass.
  • The common cursor roles for a cursor set.
  • A blinking text cursor while typing ''Wikipedia''.
PART OF A COMPUTER UI THAT INDICATES THE POSITION (TEXTUAL OR GRAPHICAL) THAT OPERATIONS WILL AFFECT
Mouse pointer; SBOD; Mouse cursor; SBBOD; Spinning pizza of death; Pointer trails; Mouse pointer trails; Mouse trails; Beachballed; Spinning wait cursor (Mac OS X); Cursor hotspot; Cursor Hotspot; SWOD; Cursor editor; Text cursor; Cursor hovering text information; Pinwheel of death; Animated cursor; Cursor (GUI); Pointer (user interface); Pointer (computing WIMP); Spinning wait cursor; Wait cursor; Keyboard focus; Cursor (computers); The spinning wheel of death; Cursor (computing); Pointer (graphical user interfaces); ARC bug; Engelbart bug; Augmentation Research Center bug; Bug (computer mouse)
Cursore del mouse (segnale sullo schermo mosso tramite movimento del mouse)
Scroll Lock key         
COMPUTER KEY
ScrLk; ScrollLock; Scrolllock; Scroll lock; Scrool lock; Scroll lock key; Scroll lock light; Copy Cursor (K3PLUS); Copy Cursor (FreeKEYB); Rollen (key); ScrLock
Tasto Scroll Lock (consente a volte di bloccare a metà o interamente lo svolgimento dello schermo)

Определение

cursor
1. <hardware> A visually distinct mark on a display indicating where newly typed text will be inserted. The cursor moves as text is typed and, in most modern editors, can be moved around within a document by the user to change the insertion point. 2. <database> In SQL, a named control structure used by an application program to point to a row of data. The position of the row is within a table or view, and the cursor is used interactively so select rows from columns. (1996-12-27)

Википедия

Cursor (databases)

In computer science, a database cursor is a mechanism that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator.

Cursors are used by database programmers to process individual rows returned by database system queries. Cursors enable manipulation of whole result sets at once. In this scenario, a cursor enables the sequential processing of rows in a result set.

In SQL procedures, a cursor makes it possible to define a result set (a set of data rows) and perform complex logic on a row by row basis. By using the same mechanics, a SQL procedure can also define a result set and return it directly to the caller of the SQL procedure or to a client application.

A cursor can be viewed as a pointer to one row in a set of rows. The cursor can only reference one row at a time, but can move to other rows of the result set as needed.